Platform Explorer / Nuxeo Platform LTS 2017 9.10

Contribution org.nuxeo.ecm.diff.actions--actions

This contribution is part of XML component org.nuxeo.ecm.diff.actions inside nuxeo-diff-jsf-9.10.jar /OSGI-INF/diff-actions-contrib.xml

Extension Point

Extension point actions of component ActionService.

Contributed Items

  • <action id="CURRENT_DOCUMENT_SELECTION_DIFF" label="command.clipboard.diff" link="#{diffActions.prepareCurrentDocumentSelectionDiff}" order="100">
          <category>CURRENT_SELECTION_LIST</category>
          <category>ORDERABLE_CURRENT_SELECTION_LIST</category>
          <filter-id>canDiffCurrentDocumentSelection</filter-id>
        </action>
  • <action id="CURRENT_TRASH_SELECTION_DIFF" label="command.clipboard.diff" link="#{diffActions.prepareCurrentTrashSelectionDiff}" order="100">
          <category>CURRENT_SELECTION_TRASH_LIST</category>
          <filter-id>canDiffCurrentTrashSelection</filter-id>
        </action>
  • <action id="CURRENT_SECTION_SELECTION_DIFF" label="command.clipboard.diff" link="#{diffActions.prepareCurrentSectionSelectionDiff}" order="100">
          <category>CURRENT_SELECTION_SECTIONS_LIST</category>
          <filter-id>canDiffCurrentSectionSelection</filter-id>
        </action>
  • <action icon="/icons/action_diff.png" id="CURRENT_DEFAULT_SELECTION_DIFF" label="command.clipboard.diff" link="#{diffActions.prepareCurrentDefaultSelectionDiff}" order="100">
          <category>DEFAULT_LIST</category>
          <filter-id>canDiffCurrentDefaultSelection</filter-id>
        </action>
  • <action id="CURRENT_VERSION_SELECTION_DIFF" label="command.clipboard.diff" link="#{diffActions.prepareCurrentVersionSelectionDiff}" order="100">
          <category>CURRENT_VERSION_SELECTION_LIST</category>
          <filter-id>canDiffCurrentVersionSelection</filter-id>
        </action>
  • <action id="CURRENT_VERSION_DIFF" label="command.versions.diffCurrent" link="#{diffActions.prepareCurrentVersionDiff}" order="100">
          <category>VERSION_LIST_ITEM</category>
        </action>

XML Source

<extension point="actions" target="org.nuxeo.ecm.platform.actions.ActionService">

    <!-- Current selection actions -->
    <action id="CURRENT_DOCUMENT_SELECTION_DIFF" label="command.clipboard.diff" link="#{diffActions.prepareCurrentDocumentSelectionDiff}" order="100">
      <category>CURRENT_SELECTION_LIST</category>
      <category>ORDERABLE_CURRENT_SELECTION_LIST</category>
      <filter-id>canDiffCurrentDocumentSelection</filter-id>
    </action>

    <!-- Trash actions -->
    <action id="CURRENT_TRASH_SELECTION_DIFF" label="command.clipboard.diff" link="#{diffActions.prepareCurrentTrashSelectionDiff}" order="100">
      <category>CURRENT_SELECTION_TRASH_LIST</category>
      <filter-id>canDiffCurrentTrashSelection</filter-id>
    </action>

    <!-- Section actions -->
    <action id="CURRENT_SECTION_SELECTION_DIFF" label="command.clipboard.diff" link="#{diffActions.prepareCurrentSectionSelectionDiff}" order="100">
      <category>CURRENT_SELECTION_SECTIONS_LIST</category>
      <filter-id>canDiffCurrentSectionSelection</filter-id>
    </action>

    <!-- Worklist actions -->
    <action icon="/icons/action_diff.png" id="CURRENT_DEFAULT_SELECTION_DIFF" label="command.clipboard.diff" link="#{diffActions.prepareCurrentDefaultSelectionDiff}" order="100">
      <category>DEFAULT_LIST</category>
      <filter-id>canDiffCurrentDefaultSelection</filter-id>
    </action>

    <!-- Version actions -->
    <action id="CURRENT_VERSION_SELECTION_DIFF" label="command.clipboard.diff" link="#{diffActions.prepareCurrentVersionSelectionDiff}" order="100">
      <category>CURRENT_VERSION_SELECTION_LIST</category>
      <filter-id>canDiffCurrentVersionSelection</filter-id>
    </action>

    <action id="CURRENT_VERSION_DIFF" label="command.versions.diffCurrent" link="#{diffActions.prepareCurrentVersionDiff}" order="100">
      <category>VERSION_LIST_ITEM</category>
    </action>

  </extension>